home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
tallytypes.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
720b
|
19 lines
/* RCSVER $Id: tallytypes.sql,v 1.2 2000-02-03 09:40:06-06 randy Exp $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: tallytypes.sql
* Date: 01/27/00
* memo: Randy Wood
* Description: Create the tallytypes table.
* Changes:
************************************************************************* */
CREATE TABLE tallytypes
(
tgroup NUMBER(38), /* Groups tallys accessed by the same key */
fareset NUMBER(38), /* valid fareset */
ttype NUMBER(38), /* ID of this tally type */
config_num NUMBER(38),
CONSTRAINT pk_tallytypes PRIMARY KEY (tgroup, fareset, config_num)
);